package com.om.exposed;

public class ObjectWithValue {
	private int value;

	public synchronized void incrementValue() {
		++value;
	}

	public int getValue() {
		return value;
	}
}
